home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsparse.h < prev    next >
C/C++ Source or Header  |  2004-12-11  |  3KB  |  112 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsparse.h parser                                      */
  34. /*       html/javascript/css parser                             */
  35. /*       and other parser routines                              */
  36. /* Author: Xavier Roche                                         */
  37. /* ------------------------------------------------------------ */
  38.  
  39.  
  40. typedef struct htsmoduleStructExtended {
  41.   /* Main object */
  42.   htsblk* r_;
  43.  
  44.   /* Error handling */
  45.   int* error_;
  46.   int* exit_xh_;
  47.   int* store_errpage_;
  48.  
  49.   /* Structural */
  50.   int* filptr_;
  51.   char*** filters_;
  52.   robots_wizard* robots_;
  53.   hash_struct* hash_;
  54.   int* lien_max_;
  55.  
  56.   /* Base & codebase */
  57.   char* base;
  58.   char* codebase;
  59.  
  60.   /* Index */
  61.   int* makeindex_done_;
  62.   FILE** makeindex_fp_;
  63.   int* makeindex_links_;
  64.   char* makeindex_firstlink_;
  65.  
  66.   /* Html templates */
  67.   char *template_header_;
  68.   char *template_body_;
  69.   char *template_footer_;
  70.  
  71.   /* Specific to downloads */
  72.   LLint* stat_fragment_;
  73.   TStamp makestat_time;
  74.   FILE* makestat_fp;
  75.   LLint* makestat_total_;
  76.   int* makestat_lnk_;
  77.   FILE* maketrack_fp;
  78.  
  79.   /* Function-dependant */
  80.   char* loc_;
  81.   TStamp* last_info_shell_;
  82.   int* info_shell_;
  83.  
  84. } htsmoduleStructExtended;
  85.  
  86.  
  87. /* Library internal definictions */
  88. #ifdef HTS_INTERNAL_BYTECODE
  89.  
  90. /*
  91.   Main parser, attempt to scan links inside the html/css/js file
  92.   Parameters: The public module structure, and the private module variables
  93. */
  94. int htsparse(htsmoduleStruct* str, htsmoduleStructExtended* stre);
  95.  
  96. /*
  97.   Check for 301,302.. errors ("moved") and handle them; re-isuue requests, make
  98.   rediretc file, handle filters considerations..
  99.   Parameters: The public module structure, and the private module variables
  100.   Returns 0 upon success
  101. */
  102. int hts_mirror_check_moved(htsmoduleStruct* str, htsmoduleStructExtended* stre);
  103.  
  104. /*
  105.   Get the next file on the queue, waiting for it, handling other files in background..
  106.   Parameters: The public module structure, and the private module variables
  107.   Returns 0 upon success
  108. */
  109. int hts_mirror_wait_for_next_file(htsmoduleStruct* str, htsmoduleStructExtended* stre);
  110.  
  111. #endif
  112.